PCA Index Dashboard Examples#
This script was last run at 2024-02-26 23:02:26.424116+00:00 (UTC)
In US/Central Time, this is 2024-02-26 17:02:26.424116-06:00
# Change one of the plots on this page to anything else
import numpy as np
from matplotlib import pyplot as plt
x = np.linspace(0, 8, 1000)
y = x*x
plt.figure(figsize=(10, 6))
plt.plot(x, y)
plt.title('Change one of the plots on this page to anything else')
plt.xlabel('X')
plt.ylabel('y')
plt.show()